home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- if "%1"=="" goto nodrive
-
- echo ╔═══════════════════════════════════════════════════╗
- echo ║ Baseball Statpak 4.0 ║
- echo ╠═══════════════════════════════════════════════════╣
- echo ║ This batch file will install Baseball Statpak ║
- echo ║ demonstration files on a disk in Drive %1 ║
- echo ║ Be sure you have a formatted disk in that drive. ║
- echo ║ ║
- echo ║ If you'd like to stop now without copying the ║
- echo ║ demo files, hit CTRL-C. Hit any other key ║
- echo ║ to proceed with the installation. ║
- echo ╚═══════════════════════════════════════════════════╝
- pause > nul
- cls
- echo Installing Demonstration files now....
- echo:
- copy demo.* %1
- cls
- echo ╔═══════════════════════════════════════════════════╗
- echo ║ The Demonstration Files have been copied. ║
- echo ╠═══════════════════════════════════════════════════╣
- echo ║ To run the program, switch to the drive with ║
- echo ║ your working disk. Type BASEBALL and hit ENTER. ║
- echo ╚═══════════════════════════════════════════════════╝
- echo:
- prompt $p$g
- goto finis
-
- :nodrive
- cls
- echo ╔═══════════════════════════════════════════════════╗
- echo ║ Sorry, No Drive Specified ║
- echo ╠═══════════════════════════════════════════════════╣
- echo ║ To make the installation work properly, you ║
- echo ║ must specify a Drive letter. For example, to ║
- echo ║ copy the DEMO files to Drive B:, type ║
- echo ║ ║
- echo ║ DEMOCOPY B: (and hit ENTER) ║
- echo ║ ║
- echo ╚═══════════════════════════════════════════════════╝
- echo:
- prompt $p$g
- goto finis
-
- :finis
-
-